home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-17 / pgmakr4.zip / FTDR720.CTL < prev    next >
Text File  |  1992-03-09  |  10KB  |  272 lines

  1. /********************************************************************
  2.  * hdpr2.ctl - PC installer control file for Persuasion 2.0
  3.  *
  4.  * Copyright (C) 1990 Aldus Corporation.  All rights reserved.
  5.  *
  6.  * ABSTRACT:
  7.  * All product-specific text goes in the .CTL file.  Nothing in the .RC
  8.  * file should be product-specific.  Both the .CTL and the .RC files
  9.  * must be localized.
  10.  *
  11.  * When localizing, only text in "double quotes" need be translated.
  12.  * (Although, if the names of files on the distribution diskettes have
  13.  * been changed, they'll have to be changed in this control file too.)
  14.  *
  15.  *******************************************************************/
  16.  
  17. /* The PRODUCT command is required.  
  18.  */
  19. PRODUCT "Filter Driver Pack"
  20. VERSIONREQ "1.02"      /* minimum installer version required */
  21.  
  22.  
  23. /* There is one DISK statement for each distribution disk.  It gives
  24.  * the name by which the user will be asked for the disk, and a list
  25.  * of the files on the disk.  In addition to the file names, the list
  26.  * of files contains the sizes of the files (uncompressed, in bytes)
  27.  * and the subdirectories in which the files can be found.  If the
  28.  * file is in the root, the subdirectory can be left off.  The options
  29.  * CHECKDATE or NOREPLACE can be specified after the subdirectory.  Lines
  30.  * are separated by commas.
  31.  *
  32.  * This part of the control file will be created automatically by the
  33.  * Disk Builder Utility.
  34.  */
  35.  
  36.  
  37. DISK "Disk 1"
  38.    {
  39.    (C)ALDUS.'91         62,
  40.    ALDSETUP.EXE     170048,
  41.    ALDSETRS.RSL      30208,
  42.    FTDR720.CTL        9238,
  43.    ALDIM.PC~        149200,
  44.    IMAGE.TXT          5802,
  45.    123IMP.FL~        72576  "FILTERS"  CHECKDATE,
  46.    ASCIIMP.FL~        8336  "FILTERS"  CHECKDATE,
  47.    CHARTIMP.FL~       8480  "FILTERS"  CHECKDATE,
  48.    EXCELIMP.FL~      79648  "FILTERS"  CHECKDATE,
  49.    CHREXPC.tb~        3811  "FILTERS"  CHECKDATE,
  50.    CHRIMPC.tb~        3785  "FILTERS"  CHECKDATE,
  51.    TEIMP.FL~         60480  "FILTERS"  CHECKDATE,
  52.    DCAIMP.FL~         8768  "FILTERS"  CHECKDATE,
  53.    VPIMP.FL~        125203  "FILTERS"  CHECKDATE,
  54.    WINWDIMP.FL~      39936  "FILTERS"  CHECKDATE,
  55.    WNWD2IMP.FL~      47104  "FILTERS"  CHECKDATE,
  56.    WP5EXP.FL~        11264  "FILTERS"  CHECKDATE,
  57.    WP5IMP.FL~        36864  "FILTERS"  CHECKDATE,
  58.    XY3IMP.FL~        29297  "FILTERS"  CHECKDATE,
  59.    XY3EXP.FL~        39831  "FILTERS"  CHECKDATE,
  60.    SAMAWIMP.FL~      14997  "FILTERS"  CHECKDATE,
  61.    FILTERS.TXT       13500  "FILTERS"
  62.    }
  63.  
  64.  
  65.  
  66. DIALOG ContQuit "&Continue" "&Cancel"
  67.   {
  68.     CAPTION "Language selection"
  69.     TEXT
  70.     {
  71.     "This disk pack is designed to be used with US English,"
  72.     "Canadian English or International English versions of Aldus"
  73.     "products.  If the language of your Aldus product is other"
  74.     "than US, Canadian or International English, select ""Cancel"""
  75.     "and read the FILTERS.TXT file on this disk for further "
  76.     "instructions."
  77.         }
  78.   }
  79.  
  80. DIALOG WhichLang "&US Engl" "&Intl Engl"
  81.   {
  82.     CAPTION "English language selection"
  83.     TEXT
  84.     {
  85.     "Select ""US Engl"" for US Aldus Products or select ""Intl Engl"""  
  86.     "for Canadian and International English products."
  87.     "Read the FILTERS.TXT file on this disk for further instructions."
  88.         }
  89.   }
  90.  
  91. DIALOG FilterWarning "&Continue"
  92.   {
  93.     TEXT
  94.     {
  95.     "The more filters you install, the more time it takes for"
  96.     "Aldus products to start up. Install only the filters you need."
  97.     }
  98.   }
  99.  
  100. DIALOG SucRead "&OK"
  101. {
  102.     CAPTION "Setup complete"
  103.     TEXT
  104.     {
  105.     "All items you selected have been successfully installed."
  106.     " "
  107.     "You may now exit this program or choose to read the"
  108.     "FILTERS.TXT file, which has been added to the View menu.  You may"
  109.     "also choose to examine other information provided from the "
  110.     "Diagnostics or View menus in Aldus Setup."
  111.     }
  112. }
  113.  
  114.  
  115. PACKAGE FILTERS    "Filters" SELECTED
  116.   {
  117.     GETALDDIR AldDir
  118.     DISPLAY ContQuit Answer
  119.     IF Answer EQS "&Continue"
  120.     {
  121.     DISPLAY WhichLang Answer1
  122.     IF Answer1 EQS "&Intl Engl"
  123.         {
  124.     CONCAT AldDir "UKENGLSH" UKDIR
  125.     CONCAT UKDIR "FILTERS" FiltDir
  126.     DISPLAY FilterWarning
  127.  
  128.     FILES FiltDir
  129.     {
  130.     FILTERS.TXT
  131.     }
  132.     /*  Add the README menu item to the VIEW menu       */
  133.     ONINSTALL
  134.         {
  135.         WINDOWSMENU FiltDir "FILTERS.TXT" "FILTERS.TXT" 
  136.         }
  137.  
  138.     CONCAT UKDIR "SETUP" SetupDir
  139.     FILES SetupDir
  140.         {
  141.         ALDSETUP.EXE
  142.         ALDSETRS.RSL
  143.     FTDR720.CTL
  144.         }
  145.  
  146.     SELECT2 "Select filters" FiltDir
  147.         {
  148.         TEXT
  149.             {
  150.             "Select the filters you want to install or remove:"
  151.             " "
  152.             }
  153.         ITEMS
  154.     {
  155.     ASCIIMP.FL~ "ASCII Text Import" "[AldusImports]" "ASCII Text Import=ASCIIMP.FLT,TXT",
  156.     DCAIMP.FL~ "RFT Import" "[AldusImports]" "RFT Import=DCAIMP.FLT,RFT",
  157.     DCAIMP.FL~ "DCA Import" "[AldusImports]" "DCA Import=DCAIMP.FLT,DCA",
  158.     EXCELIMP.FL~ "Excel Spreadsheet Import" "[AldusImports]" "Excel Spreadsheet Import=EXCELIMP.FLT,XLS",
  159.     CHARTIMP.FL~ "Excel Chart Import" "[AldusImports]" "Excel Chart Import=CHARTIMP.FLT,XLC",
  160.     123IMP.FL~ "Lotus 1-2-3 Rel 1A (.WKS) Import" "[AldusImports]" "Lotus 1-2-3 Rel 1A (.WKS) Import=123IMP.FLT,WKS",
  161.     123IMP.FL~ "Lotus 1-2-3 Rel 2-2.2 (.WK1) Import" "[AldusImports]" "Lotus 1-2-3 Rel 2-2.2 (.WK1) Import=123IMP.FLT,WK1",
  162.     123IMP.FL~ "Lotus 1-2-3 Rel 3 (.WK3) Import" "[AldusImports]" "Lotus 1-2-3 Rel 3 (.WK3) Import=123IMP.FLT,WK3",
  163.     123IMP.FL~ "Symphony 1.0-1.01 (.WRK) Import" "[AldusImports]" "Symphony 1.0-1.01 (.WRK) Import=123IMP.FLT,WRK",
  164.     123IMP.FL~ "Symphony 1.1-2.0 (.WR1) Import" "[AldusImports]" "Symphony 1.1-2.0 (.WR1) Import=123IMP.FLT,WR1",
  165.     WINWDIMP.FL~ "Word for Windows 1.0 Import" "[AldusImports]" "Word for Windows 1.0 Import=WINWDIMP.FLT,DOC",
  166.     WNWD2IMP.FL~ "Word for Windows 2.0 Import" "[AldusImports]" "Word for Windows 2.0 Import=WNWD2IMP.FLT,DOC",
  167.     SAMAWIMP.FL~ "Samna Word Import" "[AldusImports]" "Samna Word Import=SAMAWIMP.FLT,SAM",
  168.     TEIMP.FL~ "Table Editor Import" "[AldusImports]" "Table Editor Import=TEIMP.FLT,TBL",
  169.     VPIMP.FL~ "Ventura Publisher Import" "[AldusImports]" "Ventura Publisher Import=VPIMP.FLT,CHP",
  170.     XY3EXP.FL~ "XYWrite III Export" "[AldusExports]" "XYWrite III Export=XY3EXP.FLT,XY3",
  171.     XY3IMP.FL~ "XYWrite III Import" "[AldusImports]" "XYWrite III Import=XY3IMP.FLT,XY3",
  172.     WP5EXP.FL~ "WordPerfect 5.0-5.1 Export" "[AldusExports]" "WordPerfect 5.0-5.1 Export=WP5EXP.FLT,WP5",
  173.     WP5IMP.FL~ "WordPerfect 5.0-5.1 Import" "[AldusImports]" "WordPerfect 5.0-5.1 Import=WP5IMP.FLT,WP5"
  174.     }  /* end items */
  175.         HELP
  176.     {
  177.     "Hold down Ctrl and click to select the import"
  178.     "filters that you want to install from the "
  179.     """Available for installation"" list."
  180.     " "
  181.     "To remove a filter, select it from the ""Currently"
  182.     "installed"" list.  Keep in mind that removing"
  183.     "a filter for Persuasion also removes it for other"
  184.     "Aldus programs you may have, such as PageMaker."
  185.     }
  186.         }  /* end select */
  187.  
  188.      ONINSTALL
  189.         {
  190.         DISPLAY SucRead
  191.         }
  192.     } /*end CE/IE*/
  193.  
  194.     IF Answer1 EQS "&US Engl"
  195.         {
  196.     CONCAT AldDir "USENGLSH" USDIR
  197.     CONCAT USDIR "FILTERS" FiltDir
  198.     DISPLAY FilterWarning
  199.  
  200.     /*  Add the README menu item to the VIEW menu       */
  201.     ONINSTALL
  202.         {
  203.         WINDOWSMENU FiltDir "FILTERS.TXT" "FILTERS.TXT" 
  204.         }
  205.  
  206.  
  207.     CONCAT USDIR "SETUP" SetupDir
  208.     FILES SetupDir
  209.         {
  210.         ALDSETUP.EXE
  211.         ALDSETRS.RSL
  212.     FTDR720.CTL
  213.         }
  214.     FILES FiltDir
  215.     {
  216.     FILTERS.TXT
  217.     }
  218.  
  219.     SELECT2 "Select filters" FiltDir
  220.         {
  221.         TEXT
  222.             {
  223.             "Select the filters you want to install or remove:"
  224.             " "
  225.             }
  226.         ITEMS
  227.     {
  228.     ASCIIMP.FL~ "ASCII Text Import" "[AldusImports]" "ASCII Text Import=ASCIIMP.FLT,TXT",
  229.     DCAIMP.FL~ "RFT Import" "[AldusImports]" "RFT Import=DCAIMP.FLT,RFT",
  230.     DCAIMP.FL~ "DCA Import" "[AldusImports]" "DCA Import=DCAIMP.FLT,DCA",
  231.     EXCELIMP.FL~ "Excel Spreadsheet Import" "[AldusImports]" "Excel Spreadsheet Import=EXCELIMP.FLT,XLS",
  232.     CHARTIMP.FL~ "Excel Chart Import" "[AldusImports]" "Excel Chart Import=CHARTIMP.FLT,XLC",
  233.     123IMP.FL~ "Lotus 1-2-3 Rel 1A (.WKS) Import" "[AldusImports]" "Lotus 1-2-3 Rel 1A (.WKS) Import=123IMP.FLT,WKS",
  234.     123IMP.FL~ "Lotus 1-2-3 Rel 2-2.2 (.WK1) Import" "[AldusImports]" "Lotus 1-2-3 Rel 2-2.2 (.WK1) Import=123IMP.FLT,WK1",
  235.     123IMP.FL~ "Lotus 1-2-3 Rel 3 (.WK3) Import" "[AldusImports]" "Lotus 1-2-3 Rel 3 (.WK3) Import=123IMP.FLT,WK3",
  236.     123IMP.FL~ "Symphony 1.0-1.01 (.WRK) Import" "[AldusImports]" "Symphony 1.0-1.01 (.WRK) Import=123IMP.FLT,WRK",
  237.     123IMP.FL~ "Symphony 1.1-2.0 (.WR1) Import" "[AldusImports]" "Symphony 1.1-2.0 (.WR1) Import=123IMP.FLT,WR1",
  238.     WINWDIMP.FL~ "Word for Windows 1.0 Import" "[AldusImports]" "Word for Windows 1.0 Import=WINWDIMP.FLT,DOC",
  239.     WNWD2IMP.FL~ "Word for Windows 2.0 Import" "[AldusImports]" "Word for Windows 2.0 Import=WNWD2IMP.FLT,DOC",
  240.     SAMAWIMP.FL~ "Samna Word Import" "[AldusImports]" "Samna Word Import=SAMAWIMP.FLT,SAM",
  241.     TEIMP.FL~ "Table Editor Import" "[AldusImports]" "Table Editor Import=TEIMP.FLT,TBL",
  242.     VPIMP.FL~ "Ventura Publisher Import" "[AldusImports]" "Ventura Publisher Import=VPIMP.FLT,CHP",
  243.     XY3EXP.FL~ "XYWrite III Export" "[AldusExports]" "XYWrite III Export=XY3EXP.FLT,XY3",
  244.     XY3IMP.FL~ "XYWrite III Import" "[AldusImports]" "XYWrite III Import=XY3IMP.FLT,XY3",
  245.     WP5EXP.FL~ "WordPerfect 5.0-5.1 Export" "[AldusExports]" "WordPerfect 5.0-5.1 Export=WP5EXP.FLT,WP5",
  246.     WP5IMP.FL~ "WordPerfect 5.0-5.1 Import" "[AldusImports]" "WordPerfect 5.0-5.1 Import=WP5IMP.FLT,WP5"
  247.     }  /* end items */
  248.         HELP
  249.     {
  250.     "Hold down Ctrl and click to select the import"
  251.     "filters that you want to install from the "
  252.     """Available for installation"" list."
  253.     " "
  254.     "To remove a filter, select it from the ""Currently"
  255.     "installed"" list.  Keep in mind that removing"
  256.     "a filter for Persuasion also removes it for other"
  257.     "Aldus programs you may have, such as PageMaker."
  258.     }
  259.         }  /* end select */
  260.  
  261.      ONINSTALL
  262.         {
  263.         DISPLAY SucRead
  264.         }
  265.  
  266.         }  /* end US */
  267.      } /*end continue/quit */
  268. }
  269.  
  270.  
  271.  
  272.